kafka监控工具kafka eagle

常见kafka监控工具

  • Kafka Manager(编译安装,比较耗时; 不能进行访问控制; 不能配置告警; 耗费内存。
  • Kafka Offset Monitor(该项目已经近2年未维护了)
  • Kafka Eagle(需要数据库mysql或sqlite
  • JmxTool(结合Influxdb和Grafana使用 比较繁琐

kafka监控工具kafka eagle

https://www.kafka-eagle.org/

Kafka EagleRepository
Githubhttps://github.com/smartloli/kafka-eagle
Downloadhttp://download.kafka-eagle.org/

官方安装文档

https://docs.kafka-eagle.org/2.env-and-install/2.installing

web界面管理

  • web界面地址:http://ip:8048/ke
  • 默认管理员账户/密码:admin/123456

docker-compose安装

1
2
3
4
5
6
7
8
9
10
11
12
13
kafka-eagle:
image: gui66497/kafka_eagle
container_name: ke
restart: always
depends_on:
- kafka
ports:
- "8048:8048"
environment:
ZKSERVER: "zookeeper:2181"
volumes:
- ./system-config.properties:/kafka-eagle/conf/system-config.properties
- ./logs:/kafka-eagle/logs

https://github.com/gui66497/docker_kafka_eagle

1
2
3
4
5
6
7
8
9
10
kafka-eagle:
container_name: kafka-eagle
image: xuxiangwork/kafka-eagle
ports:
- "8048:8048"
environment:
KAFKA_ZOOKEEPER_HOSTS: <IP:PORT>
DB_HOST: <IP:PORT>
DB_USER: <USER>
DB_PASSWORD: <PASSWORD>

https://hub.docker.com/r/xuxiangwork/kafka-eagle

-------------本文结束-------------
0%